##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 04\04.1068 - No Title.py
# Description: No Title
##############################################################################
time = int(input("Enter the current time:"))
if time < 12:
print("Good morning!")
if time >=12 and time <=18:
print("Good afternoon!")
if time >= 18:
print("Good evening!")